home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / XQ IE URLTemplates.xpl < prev    next >
Text File  |  2001-02-06  |  1KB  |  46 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="1"
  3. "COUNT"="5"
  4. "UIPATH"="Internet\Internet Explorer\Other"
  5. "NAME"="URL Templates"
  6. "VERSION"="1.22"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Template 1"
  9. "TEXT 2"="Template 2"
  10. "TEXT 3"="Template 3"
  11. "TEXT 4"="Template 4"
  12. "TEXT 5"="Template 5"
  13. "DESCRIPTION 1"="Entering a simple word in the "Address" field of Internet Explorer causes it to try resolving the name using one of these templates."
  14. "DESCRIPTION 2"="For example, if you enter "AUTO", Internet Explorer first tries to find the site "www.AUTO.com", then "www.AUTO.edu" and so on."
  15. "DESCRIPTION 3"="Valid entries are in this format:   www.%s.nnn            (replace the "nnn" with anything).  Some possible choices are .mil, .gov, co.uk, and so on."
  16. "AUTHOR"="Xteq Systems"
  17. "CONTACTURL"="http://www.xteq.com"
  18. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  19. "COMMENT 1"=" "
  20.  
  21.  
  22. sPath="HKLM\Software\Microsoft\Internet Explorer\Main\UrlTemplate\"
  23. Sub Plugin_Initialize 
  24.  if RegPathExists(sPath) then
  25.   for l=1 to 5 
  26.    s=RegReadValue(sPath & l)
  27.    Call SetUIElement(l,s)
  28.   Next
  29.  else
  30.   Disable
  31.  end if
  32. End Sub
  33.  
  34. Sub Plugin_CheckData(ElementIndex)
  35. End Sub
  36.  
  37. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  38.  for l=1 to 5
  39.   s=GetUIElement(l)
  40.   Call RegWriteValue(sPath & l,s,1)
  41.  next
  42. End Sub
  43.  
  44. Sub Plugin_Terminate 
  45. End Sub
  46.